home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / sparkl28.zip / MENU.BAT < prev    next >
DOS Batch File  |  1991-05-21  |  943b  |  27 lines

  1. echo off
  2. cls
  3. echo            Here's an example of how to create a menu using Sparkle.
  4. rem
  5. rem  ---- First display a window (option #6):
  6. rem       first some color, then the window (with shadow -- "-2").
  7. rem
  8. sparkle 6 4 1 20 80 32 32 /
  9. sparkle 6 5 10 18 71 79 -2 /... Main Menu ...
  10. rem
  11. rem  ---- 2nd, print the 4 menu options (plus Quit)
  12. rem
  13. sparkle 5 8  31   112 /── This is option 1 ──
  14. sparkle 5 10 31   112 /── This is option 2 ──
  15. sparkle 5 12 31   112 /── This is option 3 ──
  16. sparkle 5 14 31   112 /── This is option 4 ──
  17. sparkle 5 16 31   112 /── Quit             ──
  18. rem
  19. rem  ---- Now we tell Sparkle to turn this into a VERTICAL Bar menu (direction = 1)
  20. rem       Option # = 2.  Screen coordinates 7, 17 (top left) to 16, 65 (bottom right).
  21. rem       Note:  we're making our "bar" much wider than necessary just for effect.
  22. rem
  23. sparkle 2 7 17 16 65 1
  24. rem
  25. rem  ---- add your own lines here to test Errorlevel
  26. rem
  27.